home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Diversos / Coeli Stella 2000 / _SETUP.1 / Stella.exe / 0 / RCDATA / TPICTUREFORM / TPICTUREFORM.txt
Text File  |  1999-03-13  |  2KB  |  80 lines

  1. object PictureForm: TPictureForm
  2.   Left = -2
  3.   Top = 603
  4.   Width = 252
  5.   Height = 132
  6.   BorderIcons = [biSystemMenu, biMaximize]
  7.   Caption = 'Picture window'
  8.   Color = clBlack
  9.   Font.Color = clWindowText
  10.   Font.Height = -14
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   FormStyle = fsStayOnTop
  14.   PopupMenu = PopupMenu1
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   OnShow = FormShow
  18.   PixelsPerInch = 125
  19.   TextHeight = 16
  20.   object Image1: TJPEGImage
  21.     Left = 0
  22.     Top = 0
  23.     Width = 244
  24.     Height = 100
  25.     Align = alClient
  26.     AutoSize = True
  27.     PopupMenu = PopupMenu1
  28.     NumOfColors = _256
  29.     DCTMethod = Integ
  30.     Dither = FS
  31.     FastProcessing = False
  32.     GrayScale = False
  33.     NoSmooth = False
  34.     OnePass = False
  35.     ProgressStep = 10
  36.   end
  37.   object AbsentFilePanel: TPanel
  38.     Left = 6
  39.     Top = 31
  40.     Width = 233
  41.     Height = 33
  42.     Caption = 'No image available'
  43.     Font.Color = clRed
  44.     Font.Height = -21
  45.     Font.Name = 'MS Sans Serif'
  46.     Font.Style = []
  47.     ParentFont = False
  48.     TabOrder = 0
  49.     Visible = False
  50.   end
  51.   object PopupMenu1: TPopupMenu
  52.     Left = 4
  53.     Top = 5
  54.     object LoadImage1: TMenuItem
  55.       Caption = 'Load Image'
  56.       ShortCut = 0
  57.       OnClick = LoadImage1Click
  58.     end
  59.     object N1: TMenuItem
  60.       Caption = '-'
  61.       ShortCut = 0
  62.     end
  63.     object Border1: TMenuItem
  64.       Caption = 'Window border'
  65.       Checked = True
  66.       ShortCut = 0
  67.       OnClick = Border1Click
  68.     end
  69.   end
  70.   object OpenDialog1: TOpenDialog
  71.     FileEditStyle = fsEdit
  72.     FileName = 'Earth.jpg'
  73.     Filter = 'JPEG Images|*.jpg'
  74.     Options = [ofHideReadOnly]
  75.     Title = 'Load a JPEG Image'
  76.     Left = 34
  77.     Top = 5
  78.   end
  79. end
  80.